+Sun Aug 22 00:08:44 2004 Matthias Clasen <maclas@gmx.de>
+
+ Fix #150406, reported by Fernando San Martín Woerner, patch
+ by Gustavo Carneiro.
+
+ * gtk/gtkentrycompletion.c
+ (gtk_entry_completion_default_completion_func): Check that
+ column is of type G_TYPE_STRING before proceeding.
+
Sat Aug 21 23:52:13 2004 Matthias Clasen <maclas@gmx.de>
* gtk/gtktreestore.c (gtk_tree_store_swap): Don't use an
+Sun Aug 22 00:08:44 2004 Matthias Clasen <maclas@gmx.de>
+
+ Fix #150406, reported by Fernando San Martín Woerner, patch
+ by Gustavo Carneiro.
+
+ * gtk/gtkentrycompletion.c
+ (gtk_entry_completion_default_completion_func): Check that
+ column is of type G_TYPE_STRING before proceeding.
+
Sat Aug 21 23:52:13 2004 Matthias Clasen <maclas@gmx.de>
* gtk/gtktreestore.c (gtk_tree_store_swap): Don't use an
+Sun Aug 22 00:08:44 2004 Matthias Clasen <maclas@gmx.de>
+
+ Fix #150406, reported by Fernando San Martín Woerner, patch
+ by Gustavo Carneiro.
+
+ * gtk/gtkentrycompletion.c
+ (gtk_entry_completion_default_completion_func): Check that
+ column is of type G_TYPE_STRING before proceeding.
+
Sat Aug 21 23:52:13 2004 Matthias Clasen <maclas@gmx.de>
* gtk/gtktreestore.c (gtk_tree_store_swap): Don't use an
+Sun Aug 22 00:08:44 2004 Matthias Clasen <maclas@gmx.de>
+
+ Fix #150406, reported by Fernando San Martín Woerner, patch
+ by Gustavo Carneiro.
+
+ * gtk/gtkentrycompletion.c
+ (gtk_entry_completion_default_completion_func): Check that
+ column is of type G_TYPE_STRING before proceeding.
+
Sat Aug 21 23:52:13 2004 Matthias Clasen <maclas@gmx.de>
* gtk/gtktreestore.c (gtk_tree_store_swap): Don't use an
model = gtk_tree_model_filter_get_model (completion->priv->filter_model);
+ g_return_val_if_fail (gtk_tree_model_get_column_type (model, completion->priv->text_column) == G_TYPE_STRING,
+ FALSE);
+
gtk_tree_model_get (model, iter,
completion->priv->text_column, &item,
-1);